home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-01-04 | 492 b | 27 lines |
- #
- # This makefile works for building on june
- #
- HOME = ../..
- WFF = ${HOME}/wff
-
- # Add -DBINARY to accept input in binary instead of ascii
-
- CFLAGS = -O -I$(WFF)/include -DTRUE=1 -DFALSE=0 -DREAL=double
-
-
- RENAISSANCE = ..
- LIBS = $(RENAISSANCE)/Lib/libgraphics.a \
- $(RENAISSANCE)/Chaucer/interpreter.a \
- -ll -lm
-
- WFF.O = $(WFF)/bin/wff.o
-
- OBJ = Cdf.o CubicFilter.o null.o \
- ${WFF.O}
-
- Reconstruct: Reconstruct.o ${OBJ}
- ${CC} ${CFLAGS} -o Reconstruct Reconstruct.o ${OBJ} ${LIBS}
-
-
-
-